SftTree/OCX 7.0

SftTree.ItemPictureExpandable Property

Softel vdm, Inc.

Defines the default graphic used to display an expandable item's item graphic.

Deprecated - Provided for compatibility with earlier versions only - Use Items.ItemImageExpandable.Picture instead

Syntax       

Get

VB.NET

refPictureObj = object.ItemPictureExpandable  As System.Drawing.ImageLanguage-specific information

VB

Set refPictureObj = object.ItemPictureExpandable  As IPictureDisp

C#.NET

System.Drawing.ImageLanguage-specific information refPictureObj = object.ItemPictureExpandable;

VC++

IPictureDisp* refPictureObj = object->GetItemPictureExpandable();

C

HRESULT object->get_ItemPictureExpandable(IPictureDisp** refPictureObj);

Delphi

refPictureObj := object.ItemPictureExpandable  : TPicture;

Put

VB.NET

object.let_ItemPictureExpandable(ByVal refPictureObj As System.Drawing.ImageLanguage-specific information)

VB

object.ItemPictureExpandable = refPictureObj  As IPictureDisp

C#.NET

void object.let_ItemPictureExpandable(System.Drawing.ImageLanguage-specific information refPictureObj);

VC++

void object->PutItemPictureExpandable(IPictureDisp* refPictureObj);

C

HRESULT object->put_ItemPictureExpandable(IPictureDisp* refPictureObj);

Delphi

procedure object._Set_ItemPictureExpandable(refPictureObj : TPicture);

PutRef

VB.NET

object.ItemPictureExpandable = refPictureObj  As System.Drawing.ImageLanguage-specific information

VB

Set object.ItemPictureExpandable = refPictureObj  As IPictureDisp

C#.NET

System.Drawing.ImageLanguage-specific information object.ItemPictureExpandable = refPictureObj;

VC++

void object->PutRefItemPictureExpandable(IPictureDisp* refPictureObj);

C

HRESULT object->putref_ItemPictureExpandable(IPictureDisp* refPictureObj);

Delphi

object.ItemPictureExpandable := refPictureObj  : TPicture;

object

A SftTree object.

refPictureObj

Defines the default graphic used to display an expandable item's item graphic.  The refPictureObj object must represent a bitmap, icon or Windows metafile.  If a bitmap is used, the top, left pixel of each graphic must contain the background color.  This color will be replaced by the actual background when the graphic is displayed.  For information about picture properties, please visit the applicable section "Using SftTree/OCX with ...".

Comments

Deprecated - Provided for compatibility with earlier versions only - Use Items.ItemImageExpandable.Picture instead

The ItemPictureExpandable property defines the default graphic used to display an expandable item's item graphic.

The ItemPictureExpandable and ItemPictureExpandableH properties are synonyms, but accept different value types (Picture object reference or Windows bitmap handle).

The ItemPictureExpandable property is used to define the default item graphic displayed for an expandable item, which is currently collapsed
Item graphics are not shown until the properties Items.ItemImageExpandable, Items.ItemImageExpanded and Items.ItemImageLeaf define valid graphics.

When using fixed height items (see Items.Style), all graphics used in a tree control as Item.Image, Items.ItemImageExpandable, Items.ItemImageExpanded and Items.ItemImageLeaf properties at the same time must be the same size (height and width).  The dimensions of the graphics are used to calculate the minimum dimension for items, so graphics used as item graphics are never clipped vertically.  To change the item graphic size, all item graphics must be removed first using the Items.ClearItemImages method.

When using variable height items (see Items.Style), the graphics used can be of varying size.  The item height is adjusted automatically, so graphics are never clipped vertically.

If an item is disabled (see Item.Enabled property), the graphic is drawn in a "grayed" fashion, if it is based on a bitmap. Other image types, like color samples, .NET image objects, etc., must be explicitly replaced with a grayed image if a different rendering of a disabled image is desired.

The ItemPictureExpandable property can be set to the value Nothing (NULL).  Item graphics are then no longer displayed.  The Item.Image properties remain unchanged.

The Items.ItemImageAlign property can be used to align item graphics on lower levels with higher level cells.

The VAlignStyle property can be used to define the vertical alignment of item graphics.

Using PutRef (see Syntax above) the control will use the reference to the Picture object.  If the Picture object is later changed, this will also affect the image used by the control.  Using Put instead causes the control to create a copy of the Picture object.  If the Picture object is later changed, this will not affect the image used by the control as it uses a copy of the object.  Because of the additional overhead and the increased resource use of Put, PutRef is the preferred method.

See Also  SftTree Object | Object Hierarchy


Feedback / comments / error reports for this topic
© 2015 - Softel vdm, Inc. - www.softelvdm.com